using System;
class rohit
{
    public static void Main()
    {
        int[] a = new int[5] { 10, 20, 30, 40, 50 };
        int[] b = new int[5] { 2, 4, 6, 8, 10 };
        int[] c = new int[5];
        Console.WriteLine("Content in 1st array");
        for (int j = 0; j < a.Length; j++)
        {
            Console.Write(a[j] + "  ");
        }

        Console.WriteLine("\nContent in 2nd array");
        for (int j = 0; j < b.Length; j++)
        {
            Console.Write(b[j] + "   ");
 
        }

        Console.WriteLine("\n Content in 3rd array");
        for (int i = 0; i < c.Length; i++)
        {
            c[i]=a[i]-b[i];
            Console.Write(c[i] + "  ");
        }
        Console.ReadLine();
    }
}